home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xcubes / Cubes.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  79 lines

  1. /*
  2. # X-BASED CUBES
  3. #
  4. #  Cubes.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Cubes */
  27.  
  28. #ifndef _XtCubes_h
  29. #define _XtCubes_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Cubes Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNsizeX "sizeX"
  39. #define XtNsizeY "sizeY"
  40. #define XtNsizeZ "sizeZ"
  41. #define XtNbase "base"
  42. #define XtNstart "start"
  43. #define XtNbrickColor "brickColor"
  44. #define XtNbrickBorder "brickBorder"
  45. #define XtCSizeX "SizeX"
  46. #define XtCSizeY "SizeY"
  47. #define XtCSizeZ "SizeZ"
  48. #define XtCBase "Base"
  49. #define CUBES_RESTORE (-5)
  50. #define CUBES_RESET (-4)
  51. #define CUBES_BLOCKED (-3)
  52. #define CUBES_SPACE (-2)
  53. #define CUBES_IGNORE (-1)
  54. #define CUBES_MOVED 0
  55. #define CUBES_SOLVED 1
  56. #define CUBES_PRACTICE 2
  57. #define CUBES_RANDOMIZE 3
  58. #define CUBES_DEC_X 4
  59. #define CUBES_INC_X 5
  60. #define CUBES_DEC_Y 6
  61. #define CUBES_INC_Y 7
  62. #define CUBES_DEC_Z 8
  63. #define CUBES_INC_Z 9
  64. #define CUBES_COMPUTED 10
  65. #define CUBES_UNDO 11
  66.  
  67. typedef struct _CubesClassRec *CubesWidgetClass;
  68. typedef struct _CubesRec *CubesWidget;
  69.  
  70. extern WidgetClass cubesWidgetClass;
  71.  
  72. typedef struct {
  73.   XEvent *event;
  74.   int reason;
  75. } cubesCallbackStruct;
  76.  
  77. #endif _XtCubes_h
  78. /* DON'T ADD STUFF AFTER THIS #endif */
  79.